        .bannar_created-by_suva {
            min-height: 100vh;
            width: 100%;
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            align-items: center;
            background-color: #f9fbff;
            background-image: linear-gradient(rgba(255,255,255,0.8), rgba(255,255,255,0.8)), url('../images/bg-pattern.jpg');
            background-size: cover;
            padding: 50px 5%;
            box-sizing: border-box; /* Ensures padding doesn't add to width */
        }

        .course {
            width: 50%;
            z-index: 10;
        }

        .course .l_online {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }

        .course .l_online .text {
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--primary-color);
            font-family: var(--font-heading);
        }

        .course .l_online .star {
            width: 50px;
            height: 2px;
            background: var(--primary-color);
            margin-right: 15px;
        }

        .course h1 {
            font-family: var(--font-heading);
            background: linear-gradient(297deg, var(--primary-color), var(--secondary-color));
            -webkit-background-clip: text;
            color: transparent;
            font-weight: 800;
            font-size: 4.5rem;
            margin: 10px 0;
            line-height: 1.1;
        }

        /* Typing Animation Section */
        .sub_heading .sub_container {
            display: flex;
            height: 50px;
            align-items: center;
            margin-bottom: 20px;
            position: relative;
        }

        .sub_heading span {
            position: absolute;
            color: transparent;
            font-family: var(--font-heading);
            font-size: 2.2rem;
            font-weight: 700;
            animation: textVisibility 16s linear infinite;
            animation-delay: calc(-4s * var(--kalu));
            white-space: nowrap;
        }

        @keyframes textVisibility {
            0%, 25% { opacity: 1; pointer-events: auto; }
            26%, 100% { opacity: 0; pointer-events: none; }
        }

        .sub_heading span::before {
            content: attr(data-text);
            position: absolute;
            width: 0%;
            border-right: 3px solid var(--primary-color);
            background: linear-gradient(376deg, #033053, #1679c5);
            -webkit-background-clip: text;
            color: transparent;
            overflow: hidden;
            animation: fillEffect 4s linear infinite;
        }

        @keyframes fillEffect {
            0% { width: 0; }
            50%, 70% { width: 100%; }
            100% { width: 0; }
        }

        .catagori {
            display: flex;
            gap: 20px;
            margin: 30px 0;
            flex-wrap: wrap;
        }

        .catagori .sub_cat {
            font-size: 1rem;
            color: var(--paragraph-color);
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .catagori .sub_cat i {
            color: var(--secondary-color);
        }

        .button {
            display: flex;
            gap: 20px;
        }

        .btn, .btn2 {
            padding: 15px 35px;
            border-radius: 10px;
            font-weight: 700;
            cursor: pointer;
            transition: 0.4s;
            border: none;
            font-size: 1rem;
        }

        .btn{ background: var(--primary-color); color: white; }
        .btn2 { background: #e0ebff; color: var(--primary-color); }
        .btn:hover { transform: translateY(-3px); box-shadow: 0 10px 20px rgba(3, 48, 170, 0.2); }

        /* Image Section */
        .img {
            width: 45%;
            position: relative;
            display: flex;
            justify-content: center;
        }

        .img .user img {
            width: 100%;
            max-width: 450px;
            filter: drop-shadow(10px 10px 30px rgba(0,0,0,0.1));
            z-index: 2;
            position: relative;
        }

        /* Floating Info Boxes */
        .box2 .sub_info, .box2 .sub_info2 {
            position: absolute;
            background: white;
            padding: 15px 20px;
            border-radius: 20px;
            display: flex;
            align-items: center;
            gap: 15px;
            box-shadow: 0 15px 35px rgba(0,0,0,0.1);
            z-index: 5;
            width: max-content;
        }

        .box2 .sub_info { right: -10px; top: 20%; animation: floating 4s ease-in-out infinite; }
        .box2 .sub_info2 { left: -10px; bottom: 20%; animation: floating 4s ease-in-out infinite reverse; }

        @keyframes floating {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-20px); }
        }

        .icon_for_banner {
            width: 45px;
            height: 45px;
            background: #f0f7ff;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            color: var(--primary-color);
        }

        .info_text h5 { margin: 0; font-size: 0.8rem; color: #777; }
        .info_text p { margin: 0; font-size: 1.2rem; font-weight: 800; color: var(--primary-color); }